home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
05
/
1
/
DISK0510.ZIP
/
STRINGS
< prev
next >
Wrap
Text File
|
1985-08-08
|
512b
|
22 lines
PROGRAM STRINGS; {a demo of the built-in string operations}
VAR
S1:STRING;
S2:STRING;
POSN:INTEGER;
BEGIN
CURSOR(0,0);
WRITELN('strings demo program');
REPEAT
WRITE('enter string 1: ');
READLN(S1);
WRITE('enter pos: ');
READLN(POSN);
WRITE('enter string to insert: ');
READLN(S2);
WRITELN(S1,'-',POSN:1,'-',S2);
INSERT(S1,POSN,S2); {insert S2 in S1 starting at S1[POSN] }
WRITELN('S1 =',S1,'.');
UNTIL S1 = 'stop';
END.